.box1 {
    position: relative;
    width: 100%;
    height: 600px;
    max-height: 80vh;
    position: relative;
    z-index: 1;
    margin-top: -142px;
    display: flex;
    justify-content: center;
}


.box1 img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.box1 h1 {
    position: absolute;
    z-index: 1;
    font-size: 48px;
    color: #000;
    line-height: 1.3;
    padding-top: 300px;
}

@media (max-width: 1600px) {
    .box1 {
        height: 500px;
    }

    .box1 h1 {
        font-size: 36px;
        padding-top: 260px;
    }
}

@media (max-width: 1200px) {
    .box1 {
        margin-top: -50px;
        height: 400px;
    }

    .box1 h1 {
        padding-top: 160px;
    }
}

@media (max-width: 1000px) {
    .box1 {
        height: 4rem;
    }

    .box1 h1 {
        padding-top: 2rem;
        font-size: .4rem;
        font-weight: bold;
    }
}

.NyBox {
    background: no-repeat right bottom;
    background-image: url(../../image/img29.jpg);
}

h1.h1 {
    display: block;
    width: 100%;
}

.box2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 170px;
}

.box2 h1.h1 {
    display: block;
    width: 100%;
    margin-bottom: 90px;
}


.box2 .item {
    display: inline-block;
    width: calc(33.333% - 30px);
    margin-bottom: 35px;
    border-bottom: 2px solid #eee;
    transition: all .3s;
}

.box2 .item .img {
    overflow: hidden;
}

.box2 .item .img img {
    width: 100%;
}

.box2 .item:hover {
    box-shadow: 0 0 25px #ccc;
    border-color: var(--color);
    transition: all .3s;
}

.box2 .item:hover .img img {
    transform: scale(1.08);
    transition: 0.3s;
}

.box2 .item h1 {
    height: 100px;
    padding: 0 40px;
    overflow: hidden;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box2 .item h1 img {
    opacity: 0;
}

.box2 .item:hover h1 img {
    opacity: 1;
    transition: 0.3s;
}

@media (max-width: 1200px) {
    .box2 .item {
        width: calc(33.333% - 20px);
    }

    .box2 .item h1 {
        padding: 0 15px;
    }
}

@media (max-width: 750px) {
    .box2 h1.h1 {
        margin-bottom: .6rem;
    }

    .box2 .item {
        width: 100%;
    }

    .box2 .item h1 {
        font-size: .28rem;
        height: 1rem;
    }
}

/* 详情 */
.content {
    padding-top: 120px;
    padding-bottom: 170px;
}

.content .desc {
    margin-top: 55px;
}

.content .desc h2,
.content .desc h2 span {
    font-size: 20px;
    font-weight: bold;
    color: var(--color) !important;
}

.content .desc p {
    font-size: 15px;
    line-height: 35px;
    color: #333;
    margin-bottom: 20px;
}

.content .More {
    display: block;
    margin: 0 auto;
    margin-top: 110px;
    width: 170px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #000;
    transition: all .3s;
}

.content .More:hover {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
}

@media (max-width: 1600px) {
    .content .desc p {
        font-size: 14px;
        line-height: 30px;
    }
}

@media (max-width: 750px) {
    .content {
        padding: 1rem 0;
    }

    .content .desc {
        margin-top: 0.5rem;
    }

    .content .desc p {
        font-size: .24rem;
        line-height: .45rem;
        margin-bottom: .25rem;
    }

    .content .More {
        margin-top: 0.6rem;
    }
}
